home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus Special 26 / AMIGAplus Sonderheft 26 (2000)(Falke)(DE)(Track 1 of 2)[!].iso / Tools / Packer / PPCUnACE / Src / uac_crt.h < prev    next >
C/C++ Source or Header  |  1999-03-29  |  697b  |  47 lines

  1. #ifndef __uac_crt_h
  2. #define __uac_crt_h
  3.  
  4.  
  5. #include "acestruc.h"
  6.  
  7. CHAR *ace_fname(CHAR * s, thead * head, INT nopath);
  8. INT  create_dest_file(CHAR * file, INT a);
  9.  
  10. #ifdef UNIX
  11.   #define mkdir(_a) mkdir(_a,  S_IRWXU | S_IRWXG | S_IRWXO)
  12. #endif
  13.  
  14.  
  15. #ifndef _A_SUBDIR
  16.   #define _A_SUBDIR 0x10        /* MS-DOS directory constant */
  17. #endif
  18.  
  19. #ifndef S_IEXEC
  20.   #ifdef S_IEXECUTE
  21.     #define S_IEXEC S_IEXECUTE
  22.   #else
  23.     #define S_IEXEC 0
  24.   #endif
  25. #endif
  26.  
  27. #ifndef S_IDELETE
  28.   #define S_IDELETE 0
  29. #endif
  30.  
  31. #ifndef S_IRGRP 
  32.   #define S_IRGRP 0
  33.   #define S_IWGRP 0
  34. #endif
  35.  
  36. #ifndef S_IROTH 
  37.   #define S_IROTH 0
  38.   #define S_IWOTH 0
  39. #endif
  40.  
  41. #ifndef O_BINARY
  42.   #define O_BINARY 0
  43. #endif
  44.  
  45. #endif /* __uac_crt_h */
  46.  
  47.